From: Joey Hess Date: Tue, 23 Sep 2025 17:02:24 +0000 (-0400) Subject: fix windows build X-Git-Tag: archive/raspbian/10.20251029-1+rpi1~1^2~3^2~70 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=f2abeaae12dfd7012febb038a2efefb99ae732f9;p=git-annex.git fix windows build --- diff --git a/Build/NullSoftInstaller.hs b/Build/NullSoftInstaller.hs index b2e1209878..c77e573569 100644 --- a/Build/NullSoftInstaller.hs +++ b/Build/NullSoftInstaller.hs @@ -61,7 +61,10 @@ main = do let gitannexcmd = tmpdir literalOsPath "git-annex.cmd" F.writeFileString gitannexcmd "git annex %*" F.writeFileString (toOsPath nsifile) $ makeInstaller - gitannex gitannexcmd license htmlhelp (winPrograms ++ magicDLLs') magicShare' + gitannex (fromOsPath gitannexcmd) license + (fromOsPath htmlhelp) + (winPrograms ++ magicDLLs') + magicShare' [ webappscript, autostartscript ] mustSucceed "makensis" [File nsifile] removeFile (toOsPath nsifile) -- left behind if makensis fails